home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / sun4.md / netIEMem.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  96 lines

  1. /* netIEMem.c -
  2.  *
  3.  * Routines to manage the control block memory for the ethernet board.  All
  4.  * of the memory lies in one big block.  This block is divided up into equal
  5.  * sized chunks and each chunk is allocated sequentially.
  6.  *
  7.  * Copyright 1985, 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/net/sun4.md/netIEMem.c,v 9.2 90/10/19 15:47:23 jhh Exp $ SPRITE (Berkeley)";
  20. #endif
  21.  
  22. #include <sprite.h>
  23. #include <sys.h>
  24. #include <list.h>
  25. #include <netIEInt.h>
  26. #include <vm.h>
  27. #include <vmMach.h>
  28. #include <stdio.h>
  29.  
  30. static    Address    memAddr;
  31.  
  32.  
  33. /*
  34.  *----------------------------------------------------------------------
  35.  *
  36.  * NetIEMemInit --
  37.  *
  38.  *    Initialize the control block memory structures.  This involves
  39.  *      allocating the memory and initializing the pointer to the
  40.  *    beginning of free memory.
  41.  *
  42.  * Results:
  43.  *    None.
  44.  *
  45.  * Side effects:
  46.  *    Pointer to beginning of free memory list is initialized.
  47.  *
  48.  *----------------------------------------------------------------------
  49.  */
  50.  
  51. void
  52. NetIEMemInit(statePtr)
  53.     NetIEState        *statePtr;
  54. {
  55.     if (!statePtr->running) {
  56.     statePtr->memBase = (int) VmMach_NetMemAlloc(NET_IE_MEM_SIZE);
  57.     printf("Initializing Intel memory at 0x%x.\n",statePtr->memBase);
  58.     }
  59.     memAddr = (Address) statePtr->memBase;
  60.     return;
  61. }
  62.  
  63.  
  64. /*
  65.  *----------------------------------------------------------------------
  66.  *
  67.  * NetIEMemAlloc --
  68.  *
  69.  *    Return a pointer to the next free chunk of memory.  Return NIL if none
  70.  *      left.
  71.  *
  72.  *
  73.  * Results:
  74.  *    Pointer to next free chunk of memory, NIL if none left.
  75.  *
  76.  * Side effects:
  77.  *    Pointer to beginning of free memory is incremented.
  78.  *
  79.  *----------------------------------------------------------------------
  80.  */
  81.  
  82. Address
  83. NetIEMemAlloc(statePtr)
  84.     NetIEState        *statePtr;
  85. {
  86.     Address    addr;
  87.  
  88.     addr = memAddr;
  89.     memAddr += NET_IE_CHUNK_SIZE;
  90.     if (memAddr > (Address) (statePtr->memBase) + NET_IE_MEM_SIZE) {
  91.     return((Address) NIL);
  92.     }
  93.  
  94.     return(addr);
  95. }
  96.